    /* box2 */
    .section2 {
        padding-top: 60px;
        padding-bottom: 75px;
    }

    .Box2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .lt2 {
        width: 48%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .lt2 h1 {
        position: relative;
        color: var(--color);
        font-size: 36px;
        padding-left: 25px;
        border-left: 6px solid var(--color);
    }

    .lt2 h2 {
        color: #333333;
        font-size: 22px;
        display: block;
    }

    .lt2 .desc2 {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 20px;
    }

    .lt2 .desc2 p {
        width: 100%;
        color: #666666;
        font-size: 14px;
        line-height: 1.5;
        text-indent: 24px;
    }

    .lt2 a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
        height: 40px;
        border-radius: 5px;
        background: var(--color);
        color: #fff;
        font-size: 14px;
        text-align: center;
    }

    .rt2 {
        width: 50%;
    }

    @media (max-width: 1200px) {
        .section2 {
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .lt2 {
            width: 53%;
            grid-gap: 10px;
        }

        .lt2 h1 {
            font-size: 24px;
            padding-left: 15px;
        }

        .lt2 .desc2 {
            grid-gap: 10px;
        }

        .lt2 .desc2 p {
            line-height: 1.25;
        }

        .rt2 {
            width: 45%;
        }
    }

    @media (max-width: 720px) {
        .lt2 {
            width: 100%;
            grid-gap: 10px;
        }

        .rt2 {
            margin-top: 15px;
            width: 100%;
        }
    }

    @media (max-width: 460px) {}

    @media (max-width: 380px) {}